home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 September (IDG) / Sep99.iso / Shareware World / Comms & Internet / LinkConverter 1.1.2 / Dialog Director v0.7 / Examples / Name & Password.as < prev    next >
Encoding:
Text File  |  1998-01-12  |  523 b   |  11 lines  |  [TEXT/ToyS]

  1. set dlog to {size:[260, 150], contents:[¬
  2.     {class:push button, bounds:[190, 120, 250, 140], name:"OK", enabled:[dAnd, 3, 4]}, ¬
  3.     {class:push button, bounds:[110, 120, 170, 140], name:"Cancel"}, ¬
  4.     {class:text field, bounds:[10, 34, 250, 34 + 16], name bounds:¬
  5.         [10, 10, 250, 26], name:"User Name:", value:""}, ¬
  6.     {class:password field, bounds:[10, 84, 250, 84 + 16], name bounds:¬
  7.         [10, 60, 250, 76], name:"Password:", value:""} ¬
  8.         ], timeout after:60}
  9.  
  10. set [ok, _, a, b] to dd auto dialog dlog
  11. if ok then return [a, b]